home *** CD-ROM | disk | other *** search
/ SGI Hot Mix 8 / Hot Mix 8.iso / .all / demos / Lightscape / RemoveIt2 (.txt) < prev   
Text File  |  1994-06-22  |  531b  |  31 lines

  1. #!/bin/csh -f
  2.  
  3. set INST_DIR=LightscapeDemo
  4. set INST_PATH=/usr/local/$INST_DIR
  5.  
  6. echo "Remove Lightscape Visualization System (y/n)? \c"
  7. set ans=($<)
  8. if ( $ans != 'y' ) then
  9.           echo " "
  10.           echo "... Bye."
  11.           sleep 2
  12.           exit
  13. endif
  14.  
  15.  
  16. echo " "
  17. echo "Removing Lightscape Visualization System.  Please wait, this will take" 
  18. echo "a few seconds..."
  19. echo " "
  20.  
  21. #/bin/rm -rf $INST_PATH >& /dev/null
  22. /bin/rm -rf $INST_PATH
  23.  
  24. echo " "
  25. echo "Done!"
  26.  
  27. echo " "
  28. echo "Press Enter to exit this window...  \c"
  29. set a = $<
  30.  
  31.